home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / GLUT-3.7 / README.ADA < prev    next >
Encoding:
Text File  |  1998-08-12  |  1.2 KB  |  43 lines

  1.  
  2. GLUT 3.4 was the first release of GLUT to support an Ada language
  3. binding for SGI's Ada run-time and development environment.  (With a
  4. bit of work, GLUT could probably be easily be adapted to other Ada
  5. development environments, assuming the environment already has an
  6. OpenGL binding.)
  7.  
  8. To use the SGI Ada binding, please make sure that the following GNAT
  9. (SGI's Ada compiler) subsystems are installed on your system:
  10.  
  11.   Ada Execution-only Environment (eoe)
  12.   -------------------------------------
  13.     gnat_eoe.sw.lib
  14.  
  15.   Ada Development Option (dev)
  16.   -----------------------------
  17.     gnat_dev.bindings.GL
  18.     gnat_dev.bindings.std
  19.     gnat_dev.lib.src
  20.     gnat_dev.lib.obj
  21.     gnat_dev.sw.gnat
  22.  
  23. The GLUT Ada binding was developed and tested with the IRIX 5.3 and 6.2
  24. gnat_dev and gnat_eoe images (v3.07, built 960827).
  25.  
  26. Some fairly simple GLUT examples written in Ada can be found in the
  27. progs/ada subdirectory.  GLUT 3.6 expanded the number of Ada example
  28. programs included in the GLUT source code distribution.  GLUT's actual
  29. Ada binding is found in the adainclude/GL subdirectory.
  30.  
  31. To build the Ada binding and example programs, first build GLUT
  32. normally, then:
  33.  
  34.   cd adainclude/GL
  35.   make glut.o
  36.   cd ../../progs/ada
  37.   make
  38.  
  39. Good luck!
  40.  
  41. - Mark Kilgard
  42.   November 12, 1997
  43.